Hey there,
I've been trying to make a tracker for Terranigma atm and mostly been successful however for some reason I'm not sure on my progressive_toggles don't seem to appear within my item grid.
Within my init.lua I load the two Item jsons first then the layouts afterwards, the item grid is created like this:
{
"shared_item_grid": {
"type":"array",
"orientation": "horizontal",
"content": [
{
"type": "itemgrid",
"h_alignment": "center",
"item_margin": "1,2",
"rows": [
["AirHerb", "Airplane", "DogWhistle", "EngagementRing", "GiantLeaves"],
["HolySeal", "Log", "MagicAnchor", "Mushroom", "PrettyFlower"],
["ProtectBell", "RaDewDrop", "RedScarf", "Ruby", "SewerKey"],
["SharpClaws", "Ship", "SnowGrassLeaf", "SpeedShoes", "TowerKey"],
["", "", "", "", ""],
["Astarika", "Berugas", "Dragoon", "Eklamata", "GreatCliff"],
["GreatLakes", "Louran", "MermaidTower", "NeotokioSewers", "NorfestForest"],
["Penginea", "RaTree", "SylvainCastle", "Zue", ""]
]
},
{
"type": "itemgrid",
"v_alignment": "top",
"margin": "2,0,2,0",
"item_margin": "1,2",
"rows": [
["Starstone"],
["TimeBomb"]
]
}
]
}
}